home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / spiele / gnuchess / src / test / chesstest / makefile < prev    next >
Makefile  |  1995-07-02  |  351b  |  23 lines

  1. MAKEFILE= Makefile
  2. ROOTDIR        = $$HOME
  3.  
  4. CC    = $(CPREFIX)gcc -I/usr/ucbinclude
  5. #    Directory where program is installed
  6.  
  7. all:    cmpr testgen score
  8.  
  9. clean:    
  10.     -rm *.o *.textx* testgen cmpr score
  11.  
  12. test:    cmpr testgen score
  13.     cd  ../../src; ../test/CHESSTEST/testall
  14.  
  15. cmpr:    cmpr.c
  16.     $(CC) $? -o $@
  17.  
  18. testgen:    testgen.c
  19.     $(CC) $? -o $@
  20.  
  21. score:    score.c
  22.     $(CC) $? -o $@
  23.